move deprecated guards around everything, including includes and include
authorMichael Natterer <mitch@imendio.com>
Tue, 27 May 2008 15:07:26 +0000 (15:07 +0000)
committerMichael Natterer <mitch@src.gnome.org>
Tue, 27 May 2008 15:07:26 +0000 (15:07 +0000)
2008-05-27  Michael Natterer  <mitch@imendio.com>

* gtk/gtksignal.h: move deprecated guards around everything,
including includes and include guards (just as in all other
deprecated files).

svn path=/trunk/; revision=20191

ChangeLog
gtk/gtksignal.h

index 9957e34da80ab07b68e296b171d7b611e7b9b65f..6a1a5a9ba1ced0bb01f31a831e51c541c48f9177 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-05-27  Michael Natterer  <mitch@imendio.com>
+
+       * gtk/gtksignal.h: move deprecated guards around everything,
+       including includes and include guards (just as in all other
+       deprecated files).
+
 2008-05-27  Tor Lillqvist  <tml@novell.com>
 
        * gtk/updateiconcache.c (build_cache): Use simpler mode for open()
index 56bbe0b4b14286db1fa297068cc105cd97e8a836..8f33207e661a4c6237603c769456e47016af021c 100644 (file)
  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
  * file for a list of people on the GTK+ Team.  See the ChangeLog
  * files for a list of changes.  These files are distributed with
- * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
+ * GTK+ at ftp://ftp.gtk.org/pub/gtk/.
  */
 
+#ifndef GTK_DISABLE_DEPRECATED
+
 #ifndef __GTK_SIGNAL_H__
 #define __GTK_SIGNAL_H__
 
-
 #include <gtk/gtkenums.h>
 #include <gtk/gtkobject.h>
 #include <gtk/gtkmarshal.h>
 
 G_BEGIN_DECLS
-  
-#ifndef GTK_DISABLE_DEPRECATED
 
 #define        gtk_signal_default_marshaller   g_cclosure_marshal_VOID__VOID
 
@@ -144,8 +143,8 @@ void        gtk_signal_compat_matched               (GtkObject          *object,
                                                 GSignalMatchType    match,
                                                 guint               action);
 
-#endif /* GTK_DISABLE_DEPRECATED */
-
 G_END_DECLS
 
 #endif /* __GTK_SIGNAL_H__ */
+
+#endif /* GTK_DISABLE_DEPRECATED */